home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Narzedzia systemowe / Inno Setup 5.0.4 Beta / isetup-5.0.4-beta.exe / {app} / Examples / Example2.iss (.txt) < prev    next >
Encoding:
Inno Setup Script  |  2003-04-13  |  803 b   |  20 lines

  1. ; -- Example2.iss --
  2. ; Same as Example1.iss, but creates its icon in the Programs folder of the
  3. ; Start Menu instead of in a subfolder, and also creates a desktop icon.
  4. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  5. [Setup]
  6. AppName=My Program
  7. AppVerName=My Program version 1.5
  8. DefaultDirName={pf}\My Program
  9. DisableProgramGroupPage=yes
  10. ; ^ since no icons will be created in "{group}", we don't need the wizard
  11. ;   to ask for a group name.
  12. UninstallDisplayIcon={app}\MyProg.exe
  13. [Files]
  14. Source: "MyProg.exe"; DestDir: "{app}"
  15. Source: "MyProg.hlp"; DestDir: "{app}"
  16. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  17. [Icons]
  18. Name: "{commonprograms}\My Program"; Filename: "{app}\MyProg.exe"
  19. Name: "{userdesktop}\My Program"; Filename: "{app}\MyProg.exe"
  20.